crypto/internal/nistec.P521Point.x (field)

24 uses

	crypto/internal/nistec (current package)
		p521.go#L24: 	x, y, z *fiat.P521Element
		p521.go#L30: 		x: new(fiat.P521Element),
		p521.go#L38: 	p.x.SetBytes([]byte{0x0, 0xc6, 0x85, 0x8e, 0x6, 0xb7, 0x4, 0x4, 0xe9, 0xcd, 0x9e, 0x3e, 0xcb, 0x66, 0x23, 0x95, 0xb4, 0x42, 0x9c, 0x64, 0x81, 0x39, 0x5, 0x3f, 0xb5, 0x21, 0xf8, 0x28, 0xaf, 0x60, 0x6b, 0x4d, 0x3d, 0xba, 0xa1, 0x4b, 0x5e, 0x77, 0xef, 0xe7, 0x59, 0x28, 0xfe, 0x1d, 0xc1, 0x27, 0xa2, 0xff, 0xa8, 0xde, 0x33, 0x48, 0xb3, 0xc1, 0x85, 0x6a, 0x42, 0x9b, 0xf9, 0x7e, 0x7e, 0x31, 0xc2, 0xe5, 0xbd, 0x66})
		p521.go#L46: 	p.x.Set(q.x)
		p521.go#L75: 		p.x.Set(x)
		p521.go#L100: 		p.x.Set(x)
		p521.go#L158: 	x := new(fiat.P521Element).Mul(p.x, zinv)
		p521.go#L182: 	x := new(fiat.P521Element).Mul(p.x, zinv)
		p521.go#L203: 	x := new(fiat.P521Element).Mul(p.x, zinv)
		p521.go#L219: 	t0 := new(fiat.P521Element).Mul(p1.x, p2.x)  // t0 := X1 * X2
		p521.go#L222: 	t3 := new(fiat.P521Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
		p521.go#L223: 	t4 := new(fiat.P521Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
		p521.go#L232: 	x3.Add(p1.x, p1.z)                           // X3 := X1 + Z1
		p521.go#L233: 	y3 := new(fiat.P521Element).Add(p2.x, p2.z)  // Y3 := X2 + Z2
		p521.go#L263: 	q.x.Set(x3)
		p521.go#L274: 	t0 := new(fiat.P521Element).Square(p.x)      // t0 := X ^ 2
		p521.go#L277: 	t3 := new(fiat.P521Element).Mul(p.x, p.y)    // t3 := X * Y
		p521.go#L279: 	z3 := new(fiat.P521Element).Mul(p.x, p.z)    // Z3 := X * Z
		p521.go#L309: 	q.x.Set(x3)
		p521.go#L317: 	q.x.Select(p1.x, p2.x, cond)